home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pds300.arc / MAKEFILE < prev    next >
Text File  |  1991-02-09  |  565b  |  23 lines

  1. !if $d(DEBUG)
  2. SWITCHES= -w -mc -N -f- -v -lv
  3. !else
  4. SWITCHES= -w -mc -N -Z -O -G -f-
  5. !endif
  6.  
  7. pdsort.exe:    pdsort.obj merge.obj isdev.obj queue.obj pdqsort.obj makefile
  8.     tcc $(SWITCHES) pdsort.obj merge.obj isdev.obj queue.obj pdqsort.obj
  9.  
  10. pdsort.obj:    pdsort.c queue.h makefile
  11.     tcc -c $(SWITCHES) pdsort
  12.  
  13. merge.obj:    merge.c queue.h makefile
  14.     tcc -c $(SWITCHES) merge
  15.  
  16. isdev.obj:    isdev.c makefile
  17.     tcc -c $(SWITCHES) isdev
  18.  
  19. queue.obj:    queue.c queue.h makefile
  20.     tcc -c $(SWITCHES) queue
  21.  
  22. pdqsort.obj:    pdqsort.c makefile
  23.     tcc -c $(SWITCHES) pdqsort